home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJLSR200.ZIP / src / libc / dos / io / tell.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-04  |  236 b   |  13 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <libc/stubs.h>
  3. #include <errno.h>
  4. #include <io.h>
  5. #include <dpmi.h>
  6. #include <unistd.h>
  7.  
  8. off_t
  9. tell(int _file)
  10. {
  11.   return lseek(_file, 0, SEEK_CUR);
  12. }
  13.